home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-12-17 | 2.4 KB | 98 lines | [TEXT/KAHL] |
- $$Message MM Window, mm:mmWindowObject.cp
- $$File mm:mmWindowObject.cp
- /* mmWindowObject */
- /* $CopyRight$ */
-
- /* File name: mmWindowObject
- Function: Basic window object
-
- History: $Date$ Original by $Author$
-
- */
-
- #include "mmCommon$Prototype.name$.h" /* Common */
- #include "Common$Prototype.name$.h" /* Common */
-
-
- /* ======================================================= */
- /* ======================================================= */
-
- void CmmDisplay::Init()
- {
-
- this->ExtraDataHdl = nil; /* Not used by MM code, dedicated to user code */
- /* Expected to be overridden by the window code */
- }
-
- /* ======================================================= */
-
- void CmmWindow::Init()
- {
-
- inherited::Init();
-
- this->MultipleInstances = false; /* Default to single instance only */
- /* Expected to be overridden by the window code */
- }
-
- /* ======================================================= */
-
- void CmmWindow::Moved(Rect *OldRect,WindowPtr whichWindow)
- {
- /* Expected to be overridden by the window code */
- }
-
- /* ======================================================= */
-
- void CmmWindow::CloseExtras(Ptr theWS)
- {
- /* Cast to xxWorksheet.namexxPRec */
- /* Expected to be overridden by the window code */
- }
-
- /* ======================================================= */
-
- void CmmWindow::UpdateExtras(Ptr theWS)
- {
- /* Cast to xxWorksheet.namexxPRec */
- /* Expected to be overridden by the window code */
- }
-
- /* ======================================================= */
-
- void CmmWindow::OpenExtras(Ptr theWS)
- {
- /* Cast to xxWorksheet.namexxPRec */
- /* Expected to be overridden by the window code */
- }
-
- /* ======================================================= */
-
- void CmmWindow::ActivateExtras(Boolean Do_An_Activate,Ptr theWS)
- {
- /* Cast to xxWorksheet.namexxPRec */
- /* Expected to be overridden by the window code */
- }
-
- /* ======================================================= */
-
- void CmmWindow::HandleExtraButtons(Ptr theWS,ControlHandle theControl,short *UnHiliteValue)
- {
- /* Cast to xxWorksheet.namexxPRec */
- /* Expected to be overridden by the window code */
- }
-
- /* ======================================================= */
-
- void CmmWindow::HandleExtraCheckboxes(Ptr theWS,ControlHandle theControl)
- {
- /* Cast to xxWorksheet.namexxPRec */
- /* Expected to be overridden by the window code */
- }
-
- /* ======================================================= */
- /* ======================================================= */
- $$CloseFile
-
-
-